home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -serious- / wb / merlin / agent.mcp next >
Text File  |  1999-07-12  |  1KB  |  69 lines

  1.  
  2.  
  3. ; Define labels for pens (optional)
  4.  
  5. PEN  #0  Grey
  6. PEN  #1  Black
  7. PEN  #2  White
  8. PEN  #3  Blue
  9.  
  10. PEN  #4  DGrey
  11. PEN  #5  LGrey
  12. PEN  #6  Beige
  13. PEN  #7  LBlue
  14.  
  15. PEN  #8  Yellow
  16. PEN  #9  Red
  17. PEN  #10 LGreen
  18. PEN  #11 DGreen
  19.  
  20. PEN  #12 Orange
  21. PEN  #13 Cyan
  22. PEN  #14 Brown
  23. PEN  #15 Beige
  24.  
  25.  
  26.  
  27.  
  28. ; SpaceAroundWindow X Y , SpaceAroundGroup X Y 
  29. ; SpaceAroundObject X Y , LineThickness    X Y
  30.  
  31. SAW  2  1        ; 0 0
  32. SAG  3  2        ; 5 3   3 2
  33. SAO  2  1        ; 2 1
  34. LTX  2  1        ; 2 1
  35.  
  36.  
  37. ; FONT   "Fontname.font"  FontSize  Label
  38.  
  39. FONT  "Topaz.font"       8    ButtonFont
  40. FONT  "Topaz.font"       8    TextFont
  41.  
  42.  
  43. ; IFF    "path/picture.iff"   Label
  44.  
  45. IFF   "mcp:iff/agent0.iff"     agent0
  46.  
  47.  
  48. ; default size of strings and buttons in characters
  49.  
  50. DEFAULTSIZE   5
  51. ; DEFAULTPROG   "rx mcp:rexx/agent.rexx %n"    ;%n=port number, %s=prog name
  52.  
  53. WINDOWTITLE   "Agent"
  54. SAVEWINDOWPOS
  55. ; WINDOWPOS  20  20
  56.  
  57.  
  58.  
  59. VGROUP
  60.  
  61.  HGROUP  BORDERUP  BCOLOR  lgrey
  62.   PICTURE  agent0  RUN "rx mcp:rexx/agent.rexx %n"   BORDERDOWN   DITHER 2
  63.  ENDGROUP
  64.  
  65.  BUTTON "Agent" RUN "rx mcp:rexx/agent.rexx %n" BCOLOR lgreen 
  66.  
  67. ENDGROUP
  68.  
  69.